|
MAKE FIRE PARTICLES
This command will create a particles object and set it to act like fire particles.
MAKE FIRE PARTICLES Particle Number, Image Number, Frequency, X, Y, Z, Width, Height, Depth
Particle Number
Integer
The particle object number
Image Number
Integer
The image number
Frequency
Integer
The x position value
X
Float
The y position value
Y
Float
The z position value
Z
Float
The width value
Width
Float
The height value
Height
Float
The depth value
Depth
Float
Specify the depth value.
This command does not return a value.
The area specified by the position and size is identical to that of a box created with the same dimensions.
load image "fire.bmp",2
make fire particles 2, 2, 500, 5,5,5, 10,10,10
if upkey()=1 then move camera 0.1
if downkey()=1 then move camera -0.1
if leftkey()=1 then turn camera left 1
if rightkey()=1 then turn camera right 1
do
loop
delete particles 2
end
PARTICLES Commands Menu
Index
|